{% extends "base.html" %} {% comment %} {% endcomment %} {% block content %} {%for user in users%}

Basic Information


{{user.name}}

{{user.nickName}}

{{user.Email}}

{{user.phoneNumber}}

Education Experience


{%for education in educations%} {%if education.Username == user.Username%}

{{education.title}} In {{education.major}}


{{education.school}}

{{education.duration}}


{%endif%} {%endfor%}

Work Experience


{%for work in works%} {%if work.Username == user.Username%}

{{work.job}}


{{work.years}}

{{work.company}}

{{work.comment}}


{%endif%} {%endfor%}

Skills


{%for skill in skills%}

{{skill|safe}}

{%endfor%}
{%endfor%} {% endblock content %}